A Bar chart with a vertical margin

[No canvas support]

This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.bar.js"></script>
Put this where you want the chart to show up:
<canvas id="cvs" width="700" height="250">
    [No canvas support]
</canvas>
This is the code that generates the chart:
<script>
    // Create the data
    var data = [6,8,4,6];
    
    data.forEach(function (val, idx, arr)
    {
        arr[idx] = [val - 1, 1];
    });

    var bar = new RGraph.Bar({
        id: 'cvs',
        data: data,
        options: {
            textAccessible: true,
            colors: [
                'red','white',
                '#0f0','white',
                'blue','white',
                '#ccc','white'
            ],
            grouping: 'stacked',
            colorsSequential: true,
            shadow: false,
            ylabels: false,
            backgroundGrid: false,
            hmargin: 20,
            numxticks: 0,
            numyticks: 0,
            axisLinewidth: 3,
            gutterLeft: 5,
            gutterRight: 5,
            gutterTop: 15,
            gutterBottom: 5,
            labelsAbove: true,
            labelsAboveSize: 26,
            labelsAboveUnitsPost: 'km',
            textAccessible: true
        }
    }).draw();
</script>